home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 November: Tool Chest / Dev.CD Nov 98 TC.toast / Sample Code / QuickDraw / OffSample / POffSample.make < prev    next >
Encoding:
Text File  |  1994-11-18  |  1.8 KB  |  70 lines  |  [TEXT/MPS ]

  1. #
  2. #    Apple Macintosh Developer Technical Support
  3. #
  4. #    Offscreen Buffer Sample Application
  5. #
  6. #    OffSample
  7. #
  8. #    POffSample.make        -    Make Source
  9. #
  10. #    Copyright © 1989 Apple Computer, Inc.
  11. #    All rights reserved.
  12. #
  13. #    Versions:    
  14. #                1.00                04/89
  15. #                1.01                06/92
  16. #
  17. #    Components:
  18. #                OffSample.p            April 1, 1989
  19. #                OffSample.r            April 1, 1989
  20. #                OffSample.h            April 1, 1989
  21. #                OffSample.rsrc        April 1, 1989
  22. #                POffSample.make        April 1, 1989
  23. #
  24. #    Requirements:
  25. #                Offscreen.p            April 1, 1989
  26. #                Offscreen.inc1.p    April 1, 1989
  27. #                UFailure.p            November 1, 1988
  28. #                UFailure.inc1.p        November 1, 1988
  29. #                UFailure.a            November 1, 1988
  30. #
  31. #    OffSample demonstrates the usage of the Offscreen
  32. #    unit. It shows how to use offscreen pixmaps and
  33. #    bitmaps to produce flicker-free updating with a
  34. #    minimum of re-structuring of code. OffSample attempts
  35. #    to reduce the amount of 'knowledge' that it has of
  36. #    the offscreen structure so as to minimize its
  37. #    dependence on that unit.
  38. #
  39. #    OffSample emphasizes using the Offscreen unit; it
  40. #    is not intended to be viewed as a complete application
  41. #    from which to base some larger effort. Instead, its
  42. #    method of using offscreen bitmaps and pixmaps should
  43. #    be studied and adapted to other applications that
  44. #    desire features such as flicker-free updating.
  45. #
  46.  
  47. PObjs = OffSample.p.o ∂
  48.         UFailure.a.o ∂
  49.         UFailure.p.o ∂
  50.         Offscreen.p.o ∂
  51.         "{Libraries}"Runtime.o ∂
  52.         "{Libraries}"Interface.o ∂
  53.         "{PLibraries}"PasLib.o
  54.  
  55. POffSample        ƒƒ {PObjs} POffSample.make
  56.         Link -o {Targ} {PObjs}
  57.         SetFile {Targ} -t APPL -c '????' -a B
  58.  
  59. POffSample        ƒƒ OffSample.r OffSample.h OffSample.rsrc POffSample.make
  60.         Rez -rd -o {Targ} OffSample.r -append
  61.  
  62. POffSample.p.o    ƒƒ Offscreen.p UFailure.p POffSample.make
  63.  
  64. UFailure.p.o    ƒƒ UFailure.inc1.p POffSample.make
  65.  
  66. UFailure.a.o    ƒƒ POffSample.make
  67.  
  68. Offscreen.p.o    ƒƒ Offscreen.inc1.p POffSample.make
  69.  
  70.